home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / link.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  53 lines

  1. /* 
  2.  * link.c --
  3.  *
  4.  *    Procedure to map from Unix link system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: link.c,v 1.1 88/06/19 14:31:36 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * link --
  24.  *
  25.  *    Procedure to map from Unix link system call to Sprite Fs_HardLink.
  26.  *
  27.  * Results:
  28.  *      UNIX_SUCCESS    - the call was successful.
  29.  *      UNIX_ERROR      - the call was not successful.
  30.  *                        The actual error code stored in errno.
  31.  *
  32.  * Side effects:
  33.  *    Cause the two pathnames to refer to the same file.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. int
  39. link(name1, name2)
  40.     char *name1;
  41.     char *name2;
  42. {
  43.     ReturnStatus status;    /* result returned by Prefix_Link */
  44.  
  45.     status = Fs_HardLink(name1,name2);
  46.     if (status != SUCCESS) {
  47.     errno = Compat_MapCode(status);
  48.     return(UNIX_ERROR);
  49.     } else {
  50.     return(UNIX_SUCCESS);
  51.     }
  52. }
  53.